home *** CD-ROM | disk | FTP | other *** search
/ Games of Daze / Infomagic - Games of Daze (Summer 1995) (Disc 1 of 2).iso / djgpp / clients / xfd / wc4g < prev    next >
Text File  |  1994-08-12  |  470b  |  30 lines

  1. #
  2. # QOS Makefile for Watcom 9.5 C/C++ 32 with DOS/4GW extender.
  3. #
  4.  
  5. CFLAGS = -DMSDOS
  6.  
  7. all:    wc4g.tag xfd.exe ~\app-defa\xfd.res
  8.  
  9. O =    xfd.obj \
  10.     fontgrid.obj
  11.  
  12. .c.obj :
  13.     wcc386 $(CFLAGS) $*.c
  14.  
  15. ~\app-defa\xfd.res:    xfd.ad
  16.     copy xfd.ad ~\app-defa\xfd.res
  17.  
  18. xfd.exe:    wc4g $(O)
  19.     wlink N xfd.exe f xfd,fontgrid l xaw,xmu,xt,X11,xext,sys op st=30k,caseexact
  20.  
  21. wc4g.tag:
  22.     del *.tag
  23.     del *.obj
  24.     del *.map
  25.     del *.rsp
  26.     del *.cfg
  27.     del *.exe
  28.     echo >wc4g.tag
  29.  
  30.